From d56c91cdf56123c26dea07706ef042f89615a411 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 8 Apr 2005 18:14:08 +0000 Subject: [PATCH] * Using wfTimestampNow() instead of wfTimestamp( TS_MW ) --- includes/SpecialNewimages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialNewimages.php b/includes/SpecialNewimages.php index 55b43f6e10..43a401cb3f 100644 --- a/includes/SpecialNewimages.php +++ b/includes/SpecialNewimages.php @@ -118,7 +118,7 @@ function wfSpecialNewimages() { /** * Paging controls... */ - $now = wfTimestamp( TS_MW ); + $now = wfTimestampNow(); $date = $wgLang->timeanddate( $now ); $dateLink = $sk->makeKnownLinkObj( $titleObj, wfMsg( 'rclistfrom', $date ), 'from=' . $now ); -- 2.20.1